body {
  background-color: #A299FF;
  background-size: 40px 40px;
  background-image:
    linear-gradient(to right, rgba(255, 255, 255, .5) 1px, transparent 1px),
    linear-gradient(to bottom, rgba(255, 255, 255, .5) 1px, transparent 1px);
}

.img-profile {
  border-radius: 50%;
  width: 35%;
  margin: 5px 5px;
}

.follow-me-text {
  font-weight: bolder;
  color: white;
}

li {
  color: #9C7CA5;;
}

a {
  color: white;
}

a:hover {
  color: #CA7DF9;
}

h1 {
  font-family: 'Roboto Mono', monospace;
  font-weight: bold;
  font-size: 25px;
  line-height: 45px;
  color: white;
  margin: 5px 10px 10px 10px;
}

.typewriter h1 {
  font-family: 'Roboto Mono', monospace;
  font-weight: bold;
  font-size: 25px;
  line-height: 45px;
  padding: 0px 5px;
  color: white;
  overflow: hidden; /* Ensures the content is not revealed until the animation */
  border-right: .15em solid #6EFAFB; /* The typwriter cursor */
  white-space: nowrap; /* Keeps the content on a single line */
  margin: 0 auto; /* Gives that scrolling effect as the typing happens */
  letter-spacing: .01em; /* Adjust as needed */
  animation:
    typing 3s steps(30, end),
    blink-caret 1.4s step-end infinite;
}

.typewriter {
  display: inline-block;
}


@keyframes typing {
  from { width: 0 }
  to { width: 100% }
}

@keyframes blink-caret {
  from, to { border-color: #6EFAFB }
  50% { border-color: transparent }
}

h3 {
  font-family: 'Roboto Mono', monospace;
  font-size: 15px;
  line-height: -1;
  color: white;
  margin: 5px 10px 20px 10px;
}

p {
  font-family: 'Roboto Mono', monospace;
  font-weight: lighter;
  color: white;
}

.card-white {
  background-color: #03CEA4;
  padding: 30px;
  box-shadow: 5px 6px 0px #eac435;
  border-radius: 0px;
  margin: 19px 0px;
  text-align: center
}

.container {
  width: 700px;
  margin: 0 auto;
}

.text-center {
  text-align: center;
}

.list-inline > li {
  display: inline-block;
  padding: 0px 6px;
}

.list-inline {
  list-style: none;
  padding-left: 0px;
  font-size: 25px;
}

ul {
  margin: -4px;
}

@media (max-width: 960px) {
  /* For a screen < 960px, this CSS will be read */
  .container {
    width: 700px;
  }
}

@media (max-width: 720px) {
  /* For a screen < 720px, this CSS will be read */
  .container {
    width: 500px;
  }
}

@media (max-width: 540px) {
  /* For a screen < 540px, this CSS will be read */
  .container {
    width: 350px;
  }
}

button {
  border-radius: 10%;
  font-family: 'Abril Fatface', cursive;
  font-size: 16px;
  padding: 5px 15px;
}

button:hover {
  color: #CA7DF9
}
